void CDocViewView:: OnLButtonDown (UINT nFlags, CPoint point) 
{
	// TODO: Add your message handler code here and/or call default
	m_bMouseDown = true;        // 
	m_ptStart = point;                 // ߵ
	m_ptOld = point;                   // ʱ
	SetCapture();                         // Ϣ͵Ӵ
	CRect rect;
	GetClientRect(&rect);          // õͻڵĴС
	ClientToScreen(&rect);        // ǰתĻ
	ClipCursor(&rect);               // ޶ָľ
	SetCursor(m_hCross);		// ״Ϊʮ
	CView::OnLButtonDown(nFlags, point);
}
